home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
SOLAR
/
Vector Processors
/
Slice
/
subrange
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1998-10-23
|
214 b
|
8 lines
|
[
TEXT/ScoM
]
subrange from n sequence
Returns a subrange of a sequence starting from given position n elements long. Works with vectors and lists.
(subrange 1 2 '(1 2 3 4 5))
--> (2 3)
(subrange 1 2 '#(1 2 3 4 5))
--> #(2 3)